home *** CD-ROM | disk | FTP | other *** search
/ Skunkware 5 / Skunkware 5.iso / include / Xm / DialogS.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-06-30  |  1.4 KB  |  60 lines

  1. /* 
  2.  * (c) Copyright 1989, 1990, 1991, 1992 OPEN SOFTWARE FOUNDATION, INC. 
  3.  * ALL RIGHTS RESERVED 
  4. */ 
  5. /* 
  6.  * Motif Release 1.2
  7. */ 
  8. /*   $RCSfile: DialogS.h,v $ $Revision: 10.1 $ $Date: 1994/02/03 15:36:04 $ */
  9. /*
  10. *  (c) Copyright 1989, DIGITAL EQUIPMENT CORPORATION, MAYNARD, MASS. */
  11. /*
  12. *  (c) Copyright 1987, 1988, 1989, 1990, 1991, 1992 HEWLETT-PACKARD COMPANY */
  13. /*
  14. *  (c) Copyright 1988 MASSACHUSETTS INSTITUTE OF TECHNOLOGY  */
  15. /*
  16. *  (c) Copyright 1988 MICROSOFT CORPORATION */
  17. #ifndef _XmDialogShell_h
  18. #define _XmDialogShell_h
  19.  
  20. #include <Xm/Xm.h>
  21.  
  22. #ifdef __cplusplus
  23. extern "C" {
  24. #endif
  25.  
  26.  
  27. #ifndef XmIsDialogShell
  28. #define XmIsDialogShell(w)    XtIsSubclass(w, xmDialogShellWidgetClass)
  29. #endif /* XmIsDialogShell */
  30.  
  31. externalref WidgetClass xmDialogShellWidgetClass;
  32.  
  33. typedef struct _XmDialogShellClassRec       * XmDialogShellWidgetClass;
  34. typedef struct _XmDialogShellRec            * XmDialogShellWidget;
  35.  
  36.  
  37. /********    Public Function Declarations    ********/
  38. #ifdef _NO_PROTO
  39.  
  40. extern Widget XmCreateDialogShell() ;
  41.  
  42. #else
  43.  
  44. extern Widget XmCreateDialogShell( 
  45.                         Widget p,
  46.                         char *name,
  47.                         ArgList al,
  48.                         Cardinal ac) ;
  49.  
  50. #endif /* _NO_PROTO */
  51. /********    End Public Function Declarations    ********/
  52.  
  53.  
  54. #ifdef __cplusplus
  55. }  /* Close scope of 'extern "C"' declaration which encloses file. */
  56. #endif
  57.  
  58. #endif /* _XmDialogShell_h */
  59. /* DON'T ADD STUFF AFTER THIS #endif */
  60.